* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

::selection {
    background: rgba(0, 0, 0, .2);
}

body {
    box-sizing: border-box;
    /* 100%窗口高度 */
    height: 100vh;
    background: black;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}


.mainphoto img {
    width: 100vw;
}




.parallaxaward {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#text {
    position: absolute;
    font-size: 5em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
}

.parallaxaward img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.sec {
    position: relative;
    /* background:  #203327; */
    padding: 100px 0 0 150px;
    margin-top: 50px;
}

.sec h2 {
    font-size: 3em;
    color: #fff;
    /* margin-bottom: 10px; */
}

.sec p {
    font-size: 1em;
    color: #fff;
    font-weight: 300;
}




.awardboxcontainer {
    position: relative;
    /* height: 300px; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    margin-bottom: 150px;
}

.awardboxcontainer .card {
    margin-top: 50px;
    position: relative;
    max-width: 300px;
    height: 215px;
    background: #fff;
    margin: 0 10px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 202px rgba(0, 0, 0, 0.5);
    transition: .3s ease-in-out;
}

.awardboxcontainer .card:hover {
    height: 420px;
}

.awardboxcontainer .card .imgBx {
    position: relative;
    width: 260px;
    height: 300px;
    top: -60px;
    left: 20px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.awardboxcontainer .card .imgBx img {
    max-width: 100%;
    border-radius: 4px;
}

.awardboxcontainer .card .boxcontent {
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color: #111;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
}

.awardboxcontainer .card:hover .boxcontent {
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: .3s;
}